Next: Naming Conventions, Previous: Default Superclass, Up: Top [Contents][Index]
There are new condition names (signals) that can be caught when using EIEIO.
This signal is called when an attempt to reference a slot in an obj-or-class is made, and the slot is not defined for it.
This signal is called when method is called, with arguments and nothing is resolved. This occurs when method has been defined, but the arguments make it impossible for EIEIO to determine which method body to run.
To prevent this signal from occurring in your class,
implement the method no-applicable-method for
your class. This method is called when to throw this signal,
so implementing this for your class allows you block the
signal, and perform some work.
This signal is called if the function
call-next-method is called and there is no next
method to be called.
Overload the method no-next-method to protect
against this signal.
This signal is called when an attempt to set slot is made, and value doesn’t match the specified type spec.
In EIEIO, this is also used if a slot specifier has
an invalid value during a defclass.
This signal is called when an attempt to reference slot in object is made, and that instance is currently unbound.